home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / include / stubPreamble.h < prev    next >
C/C++ Source or Header  |  1996-02-11  |  468b  |  25 lines

  1. /*
  2.  * stubPreamble.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef _stubpreable_h
  14. #define _stubpreable_h
  15.  
  16. #include <native.h>
  17.  
  18. typedef union {
  19.     long        i;
  20.     void*        p;
  21.     float        f;
  22. } stack_item;
  23.  
  24. #endif
  25.